home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
snip9503
/
isisbn.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-14
|
505b
|
26 lines
/*
** ISISBN.C - Validate International Standard Book Numbers (ISBNs)
**
** public domain by Maynard Hogg
*/
#include <ctype.h>
int isbn2(char *str)
{
int i = 0;
int test = 0;
int c;
while ('\0' != (c = *str++))
{
if (isdigit(c))
c -= '0';
else if (i == 9 && 'X' == c)
c = 10;
else continue;
test += c * ++i;
}
return (i == 10 && test % 11 == 0);
}